net/http.http2Setting.Val (field)

33 uses

	net/http (current package)
		h2_bundle.go#L2336: 			return s.Val, true
		h2_bundle.go#L2348: 		Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]),
		h2_bundle.go#L2406: 		f.writeUint32(s.Val)
		h2_bundle.go#L3232: 			fmt.Fprintf(&buf, " %v=%v,", s.ID, s.Val)
		h2_bundle.go#L3608: 	Val uint32
		h2_bundle.go#L3612: 	return fmt.Sprintf("[%v = %d]", s.ID, s.Val)
		h2_bundle.go#L3620: 		if s.Val != 1 && s.Val != 0 {
		h2_bundle.go#L3624: 		if s.Val > 1<<31-1 {
		h2_bundle.go#L3628: 		if s.Val < 16384 || s.Val > 1<<24-1 {
		h2_bundle.go#L3632: 		if s.Val != 1 && s.Val != 0 {
		h2_bundle.go#L5851: 		sc.hpackEncoder.SetMaxDynamicTableSize(s.Val)
		h2_bundle.go#L5853: 		sc.pushEnabled = s.Val != 0
		h2_bundle.go#L5855: 		sc.clientMaxStreams = s.Val
		h2_bundle.go#L5857: 		return sc.processSettingInitialWindowSize(s.Val)
		h2_bundle.go#L5859: 		sc.maxFrameSize = int32(s.Val) // the maximum valid s.Val is < 2^31
		h2_bundle.go#L5861: 		sc.peerMaxHeaderListSize = s.Val
		h2_bundle.go#L8307: 		{ID: http2SettingEnablePush, Val: 0},
		h2_bundle.go#L8308: 		{ID: http2SettingInitialWindowSize, Val: uint32(cc.initialStreamRecvWindowSize)},
		h2_bundle.go#L8310: 	initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: conf.MaxReadFrameSize})
		h2_bundle.go#L8312: 		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
		h2_bundle.go#L8315: 		initialSettings = append(initialSettings, http2Setting{ID: http2SettingHeaderTableSize, Val: maxHeaderTableSize})
		h2_bundle.go#L10541: 			cc.maxFrameSize = s.Val
		h2_bundle.go#L10543: 			cc.maxConcurrentStreams = s.Val
		h2_bundle.go#L10546: 			cc.peerMaxHeaderListSize = uint64(s.Val)
		h2_bundle.go#L10552: 			if s.Val > math.MaxInt32 {
		h2_bundle.go#L10559: 			delta := int32(s.Val) - int32(cc.initialWindowSize)
		h2_bundle.go#L10565: 			cc.initialWindowSize = s.Val
		h2_bundle.go#L10567: 			cc.henc.SetMaxDynamicTableSize(s.Val)
		h2_bundle.go#L10568: 			cc.peerMaxHeaderTableSize = s.Val
		h2_bundle.go#L10582: 				cc.extendedConnectAllowed = s.Val == 1